How to use Case Expression in SQL Server.
2030
08-Nov-2015
i wnat to use Case Expression in sqlserver.please help me.
Updated on 11-Apr-2019
Anonymous User
11-Apr-2019Where A CASE is the special scalar expression or conditional statement in the SQL language which returns a single value based on the evaluation of a statement. The Case statements can be used in Select and Where clauses and even an Order By clause. The Case expression is mostly used in SQL stored procedures or as a formula for a particular column, which optimizes the SQL statements.
We'll start by walking through a simple case statement. The Case statement can be used in two forms in SQL Server:
A Simple Case statement checks only for equivalent values and cannot contain Boolean expressions. The Simple Case statement looks for the first expression in the list of all when the clause that matches statement_1 and evaluates the corresponding when clause. Whether there is no match, then the else clause is evaluated.
Anonymous User
08-Nov-2015Sometimes, you required to fetch or modify the records based on some conditions. In this case, you may use cursor or loop for modify your records. In this situation Case expression is best alternative for Cursor/looping and also provides better performance.
You can use CASE expressions anywhere in the SQL Query like CASE expressions can be used with in SELECT statement, WHERE clauses, Order by clause, HAVING clauses,Insert, UPDATE and DLETE statements.
This compares an expression to a set of simple expressions to find the result. This expression compares an expression to the expression in each WHEN clause for equivalency. If the expression with in the WHEN clause is matched, the expression in the THEN clause will be returned.
Syntax: